home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #6 / Amiga Plus CD - 2004 - No. 06.iso / AmigaPlus / Begleitmaterial / 50Tools / Grafik / PerfectPaint / rexx / Alchemy / Script / pointillisme.rx < prev   
Text File  |  2001-10-23  |  443b  |  33 lines

  1. /* Alchemy script
  2. 100
  3. 1
  4. 3
  5. */
  6.  
  7.     options results
  8.   parse ARG Port x1 y1 x2 y2 type b
  9.     ADDRESS value Port
  10.  
  11.     pp_AvoidRefresh
  12.     pp_ComposeReqOff
  13.     pp_Compose 0 100 0
  14.     pp_Progresstext 'Pointillisme'
  15.     pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
  16.     pp_EffectOn
  17.     tot=3
  18.  
  19.     pp_Progress 1 tot
  20.     pp_Maximum type+1
  21.     pp_BoxF x1 y1 x2 y2
  22.  
  23.     pp_Progress 2 tot    
  24.     pp_Minimum type+1
  25.     pp_BoxF x1 y1 x2 y2
  26.  
  27.     pp_EffectOff
  28.     pp_ComposeReqOn
  29.     pp_PermitRefresh
  30.     pp_ProgressClr
  31.  
  32.     Exit
  33.